Student Solution

-->

"Education is the most powerful weapon which you can use to change the world”
– Nelson Mandela

1 University

1 Course

4 Subjects

Week 4 SQL Assignment

Week 4 SQL Assignment

Q Using the MindTap system, please complete the following 10 SQL problems: 7.1, 7.2, 7.3, 7.5, 7.6, 7.7, 8.1, 8.2, 8.5, 8.6 When you have run your SQL in the MindTap system, copy and paste the SQL into a MS Word document. Indicate the problem number associated with your SQL. For instance: Problem 7.1: SELECT [rest of your SQL]; Problem 7.2: [your SQL]; Problem 7.3: [your SQL]; … Start each problem on a new line in your MS Word document. Submit your MS Word document via the assignment link. Resources: These are the same resources used for the Week 4 Discussion Board and can be found in MindTap in the Week 4 Discussion Board module. • Textbook: Module 7 – Introduction to Structured Query Language • Video: Module 7 – SELECT: Projection (2:48 min.) • Video: Module 7 – SELECT: Column Aliases (4:20 min.) • Video: Module 7 – SELECT: Formulas (4:50 min.) • Video: Module 7 – SELECT: Concatenation (6:56 min.) • Video: Module 7 – SELECT: Suppressing Duplicates (2:18 min.) • Video: Module 7 – FROM: JOIN ON (3:15 min.) • Video: Module 7 – FROM: JOIN More Than Two Tables (3:06 min.) • Video: Module 7 – FROM: Inner and Outer Joins (4:31 min.) • Video: Module 7 – FROM: Table Aliases (3:21 min.) • Video: Module 7 – WHERE: Equalities and Inequalities (4:39 min.) • Video: Module 7 – WHERE: Logical Connectors (3:53 min.) • Video: Module 7 – WHERE: Case Sensitivity (3:56 min.) • Video: Module 7 – ORDER BY (3:29 min.) • PowerPoint: Module 7 Review charts • Textbook: Module 8 – Advanced SQL • Video: Module 8 – CREATE TABLE Basics (6:24 min.) • Video: Module 8 – CREATE TABLE Implementing Relationships (3:53 min.) • Video: Module 8 – INSERT Basics (4:54 min.) • Video: Module 8 – INSERT Insert with an Attribute List (3:39 min.) • Video: Module 8 – UPDATE Updating Existing Data (2:48 min.) • PowerPoint: Module 8 Review charts Rubric Weekly Course Assignment Rubric Weekly Course Assignment Rubric Criteria Ratings Pts This criterion is linked to a Learning OutcomeCritical Thinking 20 pts Main points are concise, clear and well developed. Evidence and detail provide superior support for the assignment. 18 pts Main points are clear and well developed. Evidence and detail provide strong support for the assignment. 16 pts Main points are clear and developed. Evidence and detail adequately support the assignment. 14 pts Presents an incomplete analysis of the issues identified and demonstrates an inadequate understanding of the topic(s) and issue(s). 20 pts This criterion is linked to a Learning OutcomeAnalysis 20 pts Makes appropriate and powerful connections between the issues identified and the strategic concepts studied in the reading; Demonstrates complete command of the strategic concepts and analytical tools studied. Supports diagnosis and opinions with strong arguments and evidence; presents a balanced and critical view; interpretation is both reasonable and objective. 18 pts Makes appropriate connections between the issues identified and the strategic concepts studied in the reading; Demonstrates good command of the strategic concepts and analytical tools studied. Supports diagnosis and opinions with reasons and evidence; presents a fairly balanced view; interpretation is both reasonable and objective. 16 pts Makes appropriate but somewhat vague connections between the issues and concepts studied in the reading; Demonstrates limited command of the strategic concepts and analytical tools studied. Supports diagnosis and opinions with limited reasons and evidence; presents a somewhat one-sided argument. 14 pts Makes little or no connection between the issues identified and the strategic concepts studied in the reading. Supports diagnosis and opinions with few reasons and little evidence; argument is one-sided and not objective. 20 pts This criterion is linked to a Learning OutcomeKnowledge of Content 20 pts Exceeds requirements in demonstrating strong knowledge of content and depth. 18 pts Knowledge of content and depth are appropriately reflected in the assignment. 16 pts Supplements case study with limited research into the present situation of the company; provides limited documentation of sources consulted. 14 pts Some knowledge of content and depth are evident. 20 pts This criterion is linked to a Learning OutcomeAssignment Purpose 20 pts Presents detailed, realistic, and appropriate recommendations clearly supported by the information presented and concepts from the reading. 18 pts Work is accurately detailed. The weekly assignment requirements are adequately addressed. 16 pts Work reflects the assignment purpose. The weekly assignment requirements are somewhat addressed. 14 pts Work rarely reflects the assignment purpose. The weekly assignment requirements are rarely addressed. 20 pts This criterion is linked to a Learning OutcomeNo Description 20 pts Writing demonstrates a sophisticated clarity, conciseness, and correctness; includes thorough details and relevant data and information; extremely well-organized. Uses APA guidelines accurately and consistently to cite sources. 18 pts Writing is accomplished in terms of clarity and conciseness and contains only a few errors; includes sufficient details and relevant data and information; well-organized. Uses APA guidelines with minor violations to cite sources. 16 pts Knowledge of content and depth are satisfactory. 14 pts Writing is unfocused, rambling, or contains serious errors; lacks detail and relevant data and information; poorly organized. Uses APA guidelines with major violations to cite sources. 20 pts Total Points: 100

View Related Questions

Solution Preview

7.1 SELECT COLUMNS EMP_NUM,_LNAME,EMP_FNAME,EMP_INITIAL SELECT EMP_NUM,EMP_LNAME,EMP_FNAME,EMP_INITIAL FROM EMPLOYEE--from EMPLOYEE table WHERE EMP_LNAME LIKE'Smith';--WHERE clause to get EMP_LNAME starts with 'Smith' 7.2 SELECT PROJ_NAME PROJ_VALUE PROJ_BALANCE E. EMP_FNAME EMP_INITIAL E.JOB_CODE J.JOB_DESCRIPTION,J.JOB_CHG_HOUR FROM PROJECT As P INNER JOIN JOB AS J ON J.JOB CODE=E.JOB_CODE